summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-10-21 08:34:07 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2022-10-22 21:02:04 +0200
commitb02c3f2314a5561803f873ddd2d2f4dc024c1ed4 (patch)
treefacef658d95d2f088972bb785ee961630ed420e6
parentCMakeLists: Disable C4100 and C4324 (diff)
downloadyuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.tar
yuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.tar.gz
yuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.tar.bz2
yuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.tar.lz
yuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.tar.xz
yuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.tar.zst
yuzu-b02c3f2314a5561803f873ddd2d2f4dc024c1ed4.zip
-rw-r--r--src/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index c94b78eb7..9ff96c044 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -75,6 +75,7 @@ if (MSVC)
/we4555 # Expression has no effect; expected expression with side-effect
/we4826 # Conversion from 'type1' to 'type2' is sign-extended. This may cause unexpected runtime behavior.
/we5038 # data member 'member1' will be initialized after data member 'member2'
+ /we5233 # explicit lambda capture 'identifier' is not used
/we5245 # 'function': unreferenced function with internal linkage has been removed
/wd4100 # 'identifier': unreferenced formal parameter